home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SASC_6.0_Disk_7.adf / Source_And_Examples / examples / cres / cres.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-30  |  487 b   |  34 lines

  1. #include <stdio.h>
  2.  
  3. char *first;
  4. char *second;
  5. int check = 5;
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9.    first = argv[0];
  10.  
  11.    if (argc > 1)
  12.    {
  13.       second = argv[1];
  14.    }
  15.    else
  16.    {
  17.       second = "<Not Given>";
  18.    }
  19.  
  20.    printf("You named me \"%s\", and my first parameter is \"%s\"\n",
  21.           first, second);
  22.  
  23.    if (check == 5)
  24.    {
  25.       printf("Everything checks O.K.!\n");
  26.    }
  27.    else
  28.    {
  29.       printf("Something's wrong!  'check' = %d\n", check);
  30.    }
  31.  
  32.    check = *second;
  33. }
  34.